sorting danh từ sự tuyển chọn; phân loại sorting sự chọn, sự phana loại...
algorithm ['ælgəriðm] danh từ thuật toán algorithm (Tech) thuật toán,...
Câu ví dụ
A Genetic Sorting Algorithm in Ruby (tiếng Anh) Genetic Algorithms in Ruby
In Section 14.3, we saw a simple sorting algorithm that turns out not to be very efficient. Ở Mục 14.3, ta đã thấy một thuật toán sắp xếp đơn giản nhưng hóa ra không hiệu quả.
A sorting algorithm that is fast for small lists might be slow for long lists. Một thuật toán sắp xếp chạy nhanh với danh sách ngắn thì có thể chậm với danh sách dài.
Bubble sort, sometimes referred to as sinking sort, is a simple sorting algorithm that repeatedly steps through the list to be sorted, FREE Bubble sort, đôi khi được gọi là chìm loại, là một thuật toán sắp xếp đơn giản mà nhiều lần bước qua danh sách để được
Bubble sorting is one of the simplest sorting algorithm that we can use to sort an array or a structure. Bubble Sort là một trong những thuật toán phân loại đơn giản nhất mà chúng ta có thể sử dụng để sắp xếp một mảng hoặc một cấu trúc.
A sorting algorithm is stable if whenever there are two records R and S with the same key, and R appears before S in the original list, then R will always appear before S in the sorted list. Thuật toán là sắp xếp ổn định nếu bất cứ khi nào có hai bản ghi R và S có cùng khóa và R xuất hiện trước S trong danh sách gốc, thì R sẽ luôn xuất hiện trước S trong danh sách đầu ra đã được sắp xếp.
A sorting algorithm is stable if whenever there are two records R and S with the same key and with R appearing before S in the original list, R will appear before S in the sorted list. Thuật toán là sắp xếp ổn định nếu bất cứ khi nào có hai bản ghi R và S có cùng khóa và R xuất hiện trước S trong danh sách gốc, thì R sẽ luôn xuất hiện trước S trong danh sách đầu ra đã được sắp xếp.
A sorting algorithm is stable if whenever there are two records R and S with the same key, and R appears before S in the original list, then R will always appear before S in the sorted list. (wikipedia.org) Thuật toán là sắp xếp ổn định nếu bất cứ khi nào có hai bản ghi R và S có cùng khóa và R xuất hiện trước S trong danh sách gốc, thì R sẽ luôn xuất hiện trước S trong danh sách đầu ra đã được sắp xếp.
This sorting algorithm is an in-place comparison-based algorithm in which the list is divided into two parts, the sorted part at the left end and the unsorted part at the right end. Giải thuật sắp xếp này là một giải thuật dựa trên việc so sánh in-place, trong đó danh sách được chia thành hai phần, phần được sắp xếp (sorted list) ở bên trái và phần chưa được sắp xếp (unsorted list) ở bên phải.